home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / usr / share / hplip / align.pyc (.txt) < prev    next >
Python Compiled Bytecode  |  2009-10-28  |  8KB  |  194 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyc (Python 2.6)
  3.  
  4. __version__ = '5.0'
  5. __title__ = 'Printer Cartridge Alignment Utility'
  6. __mod__ = 'hp-align'
  7. __doc__ = 'Cartridge alignment utility for HPLIP supported inkjet printers. (Note: Not all printers require the use of this utility).'
  8. import sys
  9. import re
  10. import getopt
  11. import operator
  12. import os
  13. from base.g import *
  14. from base import device, status, utils, maint, tui, module
  15. from prnt import cups
  16.  
  17. def enterAlignmentNumber(letter, hortvert, colors, line_count, maximum):
  18.     (ok, value) = tui.enter_range('Enter the best aligned value for line %s (1-%d): ' % (letter, maximum), 1, maximum)
  19.     if not ok:
  20.         sys.exit(0)
  21.     
  22.     return (ok, value)
  23.  
  24.  
  25. def enterPaperEdge(maximum):
  26.     (ok, value) = tui.enter_range('Enter numbered arrow that is best aligned with the paper edge (1-%d): ' % maximum, 1, maximum)
  27.     if not ok:
  28.         sys.exit(0)
  29.     
  30.     return (ok, value)
  31.  
  32.  
  33. def colorAdj(line, maximum):
  34.     (ok, value) = tui.enter_range('Enter the numbered box on line %s that is best color matched to the background color (1-%d): ' % (line, maximum), 1, maximum)
  35.     if not ok:
  36.         sys.exit(0)
  37.     
  38.     return (ok, value)
  39.  
  40.  
  41. def bothPensRequired():
  42.     log.error('Cannot perform alignment with 0 or 1 cartridges installed.\nPlease install both cartridges and try again.')
  43.  
  44.  
  45. def invalidPen():
  46.     log.error('Invalid cartridge(s) installed.\nPlease install valid cartridges and try again.')
  47.  
  48.  
  49. def invalidPen2():
  50.     log.error('Invalid cartridge(s) installed. Cannot align with only the photo cartridge installed.\nPlease install other cartridges and try again.')
  51.  
  52.  
  53. def aioUI1():
  54.     log.info('To perform alignment, you will need the alignment page that is automatically\nprinted after you install a print cartridge.')
  55.     log.info('\np\t\tPrint the alignment page and continue.')
  56.     log.info('n\t\tDo Not print the alignment page (you already have one) and continue.')
  57.     log.info('q\t\tQuit.\n')
  58.     (ok, choice) = tui.enter_choice('Choice (p=print page*, n=do not print page, q=quit) ? ', [
  59.         'p',
  60.         'n',
  61.         'q'], 'p')
  62.     if choice == 'q':
  63.         sys.exit(0)
  64.     
  65.     return choice == 'y'
  66.  
  67.  
  68. def type10and11and14Align(pattern, align_type):
  69.     controls = maint.align10and11and14Controls(pattern, align_type)
  70.     values = []
  71.     s_controls = controls.keys()
  72.     s_controls.sort()
  73.     for line in s_controls:
  74.         if not controls[line][0]:
  75.             values.append(0)
  76.             continue
  77.         (ok, value) = tui.enter_range('Enter the numbered box on line %s where the inner lines best line up with the outer lines (1-%d): ' % (line, controls[line][1]), 1, controls[line][1])
  78.         values.append(value)
  79.         if not ok:
  80.             sys.exit(0)
  81.             continue
  82.     
  83.     return values
  84.  
  85.  
  86. def aioUI2():
  87.     log.info('')
  88.     log.info(log.bold('Follow these steps to complete the alignment:'))
  89.     log.info('1. Place the alignment page, with the printed side facing down, ')
  90.     log.info('   in the scanner.')
  91.     log.info('2. Press the Enter or Scan button on the printer.')
  92.     log.info('3. "Alignment Complete" will be displayed when the process is finished (on some models).')
  93.  
  94.  
  95. try:
  96.     mod = module.Module(__mod__, __title__, __version__, __doc__, None, (INTERACTIVE_MODE, GUI_MODE), (UI_TOOLKIT_QT4,))
  97.     mod.setUsage(module.USAGE_FLAG_DEVICE_ARGS, see_also_list = [
  98.         'hp-clean',
  99.         'hp-colorcal',
  100.         'hp-linefeedcal',
  101.         'hp-pqdiag'])
  102.     (opts, device_uri, printer_name, mode, ui_toolkit, lang) = mod.parseStdOpts()
  103.     device_uri = mod.getDeviceUri(device_uri, printer_name, filter = {
  104.         'align-type': (operator.ne, ALIGN_TYPE_NONE) })
  105.     if mode == GUI_MODE:
  106.         if not utils.canEnterGUIMode4():
  107.             log.error('%s -u/--gui requires Qt4 GUI support. Entering interactive mode.' % __mod__)
  108.             mode = INTERACTIVE_MODE
  109.         
  110.     
  111.     if mode == INTERACTIVE_MODE:
  112.         
  113.         try:
  114.             d = device.Device(device_uri, printer_name)
  115.         except Error:
  116.             e = None
  117.             log.error('Unable to open device: %s' % e.msg)
  118.             sys.exit(0)
  119.  
  120.         
  121.         try:
  122.             d.open()
  123.         except Error:
  124.             log.error('Device is busy or in an error state. Please check device and try again.')
  125.             sys.exit(1)
  126.         
  127.  
  128.         if d.isIdleAndNoError():
  129.             align_type = d.mq.get('align-type', ALIGN_TYPE_NONE)
  130.             log.debug('Alignment type=%d' % align_type)
  131.             d.close()
  132.             if align_type == ALIGN_TYPE_UNSUPPORTED:
  133.                 log.error("Alignment through HPLIP not supported for this printer. Please use the printer's front panel to perform cartrdige alignment.")
  134.             elif align_type == ALIGN_TYPE_AUTO:
  135.                 maint.AlignType1PML(d, tui.load_paper_prompt)
  136.             elif align_type == ALIGN_TYPE_AIO:
  137.                 maint.AlignType13(d, tui.load_paper_prompt, tui.load_scanner_for_align_prompt)
  138.             elif align_type == ALIGN_TYPE_8XX:
  139.                 maint.AlignType2(d, tui.load_paper_prompt, enterAlignmentNumber, bothPensRequired)
  140.             elif align_type in (ALIGN_TYPE_9XX, ALIGN_TYPE_9XX_NO_EDGE_ALIGN):
  141.                 maint.AlignType3(d, tui.load_paper_prompt, enterAlignmentNumber, enterPaperEdge, update_spinner)
  142.             elif align_type == ALIGN_TYPE_LIDIL_AIO:
  143.                 maint.AlignType6(d, aioUI1, aioUI2, tui.load_paper_prompt)
  144.             elif align_type == ALIGN_TYPE_DESKJET_450:
  145.                 maint.AlignType8(d, tui.load_paper_prompt, enterAlignmentNumber)
  146.             elif align_type in (ALIGN_TYPE_LIDIL_0_3_8, ALIGN_TYPE_LIDIL_0_4_3, ALIGN_TYPE_LIDIL_VIP):
  147.                 maint.AlignxBow(d, align_type, tui.load_paper_prompt, enterAlignmentNumber, enterPaperEdge, invalidPen, colorAdj)
  148.             elif align_type == ALIGN_TYPE_LBOW:
  149.                 maint.AlignType10(d, tui.load_paper_prompt, type10and11and14Align)
  150.             elif align_type == ALIGN_TYPE_LIDIL_0_5_4:
  151.                 maint.AlignType11(d, tui.load_paper_prompt, type10and11and14Align, invalidPen2)
  152.             elif align_type == ALIGN_TYPE_OJ_PRO:
  153.                 maint.AlignType12(d, tui.load_paper_prompt)
  154.             elif align_type == ALIGN_TYPE_LIDIL_DJ_D1600:
  155.                 maint.AlignType14(d, tui.load_paper_prompt, type10and11and14Align, invalidPen2)
  156.             else:
  157.                 log.error('Invalid alignment type.')
  158.         else:
  159.             log.error('Device is busy or in an error state. Please check device and try again.')
  160.         d.close()
  161.     else:
  162.         
  163.         try:
  164.             from PyQt4.QtGui import QApplication
  165.             from ui4.aligndialog import AlignDialog
  166.         except ImportError:
  167.             d.isIdleAndNoError()
  168.             d.isIdleAndNoError()
  169.             log.error('Unable to load Qt4 support. Is it installed?')
  170.             sys.exit(1)
  171.         except:
  172.             d.isIdleAndNoError()
  173.  
  174.         app = QApplication(sys.argv)
  175.         dlg = AlignDialog(None, device_uri)
  176.         dlg.show()
  177.         
  178.         try:
  179.             log.debug('Starting GUI loop...')
  180.             app.exec_()
  181.         except KeyboardInterrupt:
  182.             d.isIdleAndNoError()
  183.             d.isIdleAndNoError()
  184.             sys.exit(0)
  185.         except:
  186.             d.isIdleAndNoError()
  187.  
  188.         sys.exit(0)
  189. except KeyboardInterrupt:
  190.     log.error('User exit')
  191.  
  192. log.info('')
  193. log.info('Done.')
  194.